home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / progargslib.lha / ProgArgs / Examples / Support / lists.h < prev    next >
C/C++ Source or Header  |  1995-04-08  |  330b  |  19 lines

  1.  
  2. #ifndef SUPPORT_LISTS_H
  3. #define SUPPORT_LISTS_H
  4.  
  5. #ifndef EXEC_LISTS_H
  6. #include <exec/lists.h>
  7. #endif
  8.  
  9. void *num_to_node(struct List *lst,ULONG num);
  10. ULONG node_to_num(struct List *lst,void *nd);
  11.  
  12. void *head_node(struct List *lst);
  13. void *tail_node(struct List *lst);
  14.  
  15. void *next_node(void *nd);
  16. void *prev_node(void *nd);
  17.  
  18. #endif
  19.